home *** CD-ROM | disk | FTP | other *** search
/ Compendium Deluxe 2 / LSD and 17bit Compendium Deluxe - Volume II.iso / a / prog / misc / decon.lha / DeCon.doc < prev    next >
Encoding:
Text File  |  1994-12-13  |  2.1 KB  |  65 lines

  1.  
  2.                                  Debug Console
  3.  
  4.                  (c) 1994 Martin Mares, MJSoft System Software
  5.  
  6. ================================================================================
  7.  
  8.  
  9. Preface
  10. =======
  11.  
  12.    DeCon 1.0 and its documentation are Copyright (c) Martin Mares, MJSoft System
  13. Software, Prague, Czech Republic.
  14.  
  15.    This  archive  can  be  freely redistributed, as long as all of its files are
  16. included   in   their   original   form  without  any  additions,  deletions  or
  17. modifications,  and  no more than a nominal fee is charged for its distribution.
  18. All  copyright notices in the programs and accompanying documentation files must
  19. remain  on  their  places.  Also '.displayme' and other similar files may not be
  20. added.  This is generally known as FREEWARE.
  21.  
  22.    Special  permission is given to Fred Fish to distribute this program on his
  23. "Fish Disks".
  24.  
  25.    This  software  is  provided  "AS  IS"  without  warranty of any kind, either
  26. expressed  or  implied.   The author is not responsible for any damage caused by
  27. it.
  28.  
  29.  
  30. Introduction
  31. ============
  32.  
  33.    Many debugging utilities send their output to serial port using simple
  34. communication mechanism embedded in the exec.library -- the RawPutChar function.
  35. This simple utility patches that function, opens a window on WB screen and
  36. redirects all to this window.
  37.  
  38.    Warning: DeCon uses line buffering which causes incomplete lines not to be
  39. displayed before a newline character is received. For example: if you want to
  40. clear the window, you must send the FF+LF charcter pair instead of simple FF.
  41.  
  42.    If you're debugging a resident module, you have to use DeConRes which acts
  43. as a resident module opening the window and doing the same action. It has
  44. priority equal to 4, therefore it gets initialized directly after the console
  45. device. Use the AddModule utility (also included in this archive) to install it.
  46.  
  47.    DeCon is pure and can be made resident.
  48.  
  49.  
  50. Requirements
  51. ============
  52.  
  53.    - Kickstart 2.04 or higher
  54.  
  55.    - ss.library 5.0 or higher (included in this archive)
  56.  
  57.    - 68000 or higher
  58.  
  59.  
  60. Notes
  61. =====
  62.  
  63.    Send comments, suggestions and bug reports to mjsoft@k332.feld.cvut.cz
  64.  
  65.